home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Great Games / 10,000 Great Games.iso / Product / 66 / data1.cab / Source_Files / Src / Box.cpp < prev    next >
C/C++ Source or Header  |  2000-01-16  |  426b  |  23 lines

  1. #include "stdafx.h"
  2.  
  3. cBox::cBox(cBox **list, cBox *orig)
  4. {
  5.     add_end((cList **)list);
  6.     
  7.     copy(orig);
  8. }
  9.  
  10. cBox::cBox(cBox **list, int _x1, int _y1, int _x2, int _y2, char *_label)
  11.     add_end((cList **)list);
  12.     
  13.     x1 = _x1, y1 = _y1, x2 = _x2, y2 = _y2, label = _label;
  14. }
  15.  
  16. void cBox::copy(cBox *orig)
  17. {
  18.     ASSERT(orig != 0);
  19.     
  20.     x1 = orig->x1, y1 = orig->y1, x2 = orig->x2, y2 = orig->y2, label = orig->label;
  21. }
  22.